home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / kde4 / kdm / kdmrc < prev    next >
Encoding:
Text File  |  2008-10-24  |  21.9 KB  |  585 lines

  1. # KDM master configuration file
  2. #
  3. # Please note: Settings in this file are sometimes ignored (overridden).
  4. # The default KDM startup script /etc/init.d/kdm looks in /etc/default/kdm.d
  5. # for theme-related settings which, if found, take precedence. The possibly 
  6. # overridden settings are: UseBackground, BackgroundCfg, UseTheme, Theme.
  7. # See /usr/share/doc/kdm/README.Debian for details
  8. #
  9. # Definition: the greeter is the login dialog, i.e., the part of KDM
  10. # which the user sees.
  11. #
  12. # You can configure every X-display individually.
  13. # Every display has a display name, which consists of a host name
  14. # (which is empty for local displays specified in {Static|Reserve}Servers),
  15. # a colon, and a display number. Additionally, a display belongs to a
  16. # display class (which can be ignored in most cases; the control center
  17. # does not support this feature at all).
  18. # Sections with display-specific settings have the formal syntax
  19. # "[X-" host [":" number [ "_" class ]] "-" sub-section "]"
  20. # You can use the "*" wildcard for host, number, and class. You may omit
  21. # trailing components; they are assumed to be "*" then.
  22. # The host part may be a domain specification like ".inf.tu-dresden.de".
  23. # It may also be "+", which means non-empty, i.e. remote displays only.
  24. # From which section a setting is actually taken is determined by these
  25. # rules:
  26. # - an exact match takes precedence over a partial match (for the host part),
  27. #   which in turn takes precedence over a wildcard ("+" taking precedence
  28. #   over "*")
  29. # - precedence decreases from left to right for equally exact matches
  30. # Example: display name "myhost:0", class "dpy".
  31. # [X-myhost:0_dpy] precedes
  32. # [X-myhost:0_*] (same as [X-myhost:0]) precedes
  33. # [X-myhost:*_dpy] precedes
  34. # [X-myhost:*_*] (same as [X-myhost]) precedes
  35. # [X-+:0_dpy] precedes
  36. # [X-*:0_dpy] precedes
  37. # [X-*:0_*] (same as [X-*:0]) precedes
  38. # [X-*:*_*] (same as [X-*])
  39. # These sections do NOT match this display:
  40. # [X-hishost], [X-myhost:0_dec], [X-*:1], [X-:*]
  41. # If a setting is not found in any matching section, the default is used.
  42. #
  43. # Every comment applies to the following section or key. Note that all
  44. # comments will be lost if you change this file with the kcontrol frontend.
  45. # The defaults refer to KDM's built-in values, not anything set in this file.
  46. #
  47. # Special characters need to be backslash-escaped (leading and trailing
  48. # spaces (\s), tab (\t), linefeed (\n), carriage return (\r) and the
  49. # backslash itself (\\)).
  50. # In lists, fields are separated with commas without whitespace in between.
  51. # Some command strings are subject to simplified sh-style word splitting:
  52. # single quotes (') and double quotes (") have the usual meaning; the backslash
  53. # quotes everything (not only special characters). Note that the backslashes
  54. # need to be doubled because of the two levels of quoting.
  55.  
  56. [General]
  57. # This option exists solely for the purpose of a clean automatic upgrade.
  58. # Do not even think about changing it!
  59. ConfigVersion=2.4
  60. # List of permanent displays. Displays with a hostname are foreign. A display
  61. # class may be specified separated by an underscore.
  62. # Default is ":0"
  63. StaticServers=:0
  64. # List of on-demand displays. See StaticServers for syntax.
  65. # Default is ""
  66. ReserveServers=:1,:2,:3
  67. # VTs to allocate to X-servers. A negative number means that the VT will be
  68. # used only if it is free. If all VTs in this list are used up, the next free
  69. # one greater than the last one in this list will be allocated.
  70. # Default is ""
  71. ServerVTs=-7
  72. # TTYs (without /dev/) to monitor for activity while in console mode.
  73. # Default is ""
  74. ConsoleTTYs=tty1,tty2,tty3,tty4,tty5,tty6
  75. # Where KDM should store its PID (do not store if empty).
  76. # Default is ""
  77. PidFile=/var/run/kdm.pid
  78. # Whether KDM should lock the PID file to prevent having multiple KDM
  79. # instances running at once. Do not change unless you are brave.
  80. # Default is true
  81. #LockPidFile=false
  82. # Where to store authorization files.
  83. # Default is "/var/run/xauth"
  84. #AuthDir=/tmp
  85. # Whether KDM should automatically re-read configuration files, if it
  86. # finds them having changed.
  87. # Default is true
  88. #AutoRescan=false
  89. # Additional environment variables KDM should pass on to all programs it runs.
  90. # LD_LIBRARY_PATH and XCURSOR_THEME are good candidates;
  91. # otherwise, it should not be necessary very often.
  92. # Default is ""
  93. #ExportList=LD_LIBRARY_PATH,ANOTHER_IMPORTANT_VAR
  94. # A character device KDM should read entropy from.
  95. # Empty means use the system's preferred entropy device.
  96. # Default is ""
  97. #RandomDevice=/dev/altrandom
  98. # Where the command sockets should be created; make it empty to disable
  99. # them.
  100. # Default is "/var/run/xdmctl"
  101. #FifoDir=/tmp
  102. # The group to which the global command socket should belong;
  103. # can be either a name or a numerical ID.
  104. # Default is 0
  105. #FifoGroup=xdmctl
  106. # The directory in which KDM should store persistent working data.
  107. # Default is "/var/lib/kdm"
  108. #DataDir=
  109. # The directory in which KDM should store users' .dmrc files. This is only
  110. # needed if the home directories are not readable before actually logging in
  111. # (like with AFS).
  112. # Default is ""
  113. #DmrcDir=/nfs-shared/var/dmrcs
  114.  
  115. [Xdmcp]
  116. # Whether KDM should listen to incoming XDMCP requests.
  117. # Default is true
  118. Enable=false
  119. # The UDP port on which KDM should listen for XDMCP requests. Do not change.
  120. # Default is 177
  121. #Port=177
  122. # File with the private keys of X-terminals. Required for XDM authentication.
  123. # Default is ""
  124. #KeyFile=/etc/kde4/kdm/kdmkeys
  125. # XDMCP access control file in the usual XDM-Xaccess format.
  126. # Default is "/etc/kde4/kdm/Xaccess"
  127. #Xaccess=
  128. # Number of seconds to wait for display to respond after the user has
  129. # selected a host from the chooser.
  130. # Default is 15
  131. #ChoiceTimeout=10
  132. # Strip domain name from remote display names if it is equal to the local
  133. # domain.
  134. # Default is true
  135. #RemoveDomainname=false
  136. # Use the numeric IP address of the incoming connection on multihomed hosts
  137. # instead of the host name.
  138. # Default is false
  139. #SourceAddress=true
  140. # The program which is invoked to dynamically generate replies to XDMCP
  141. # DirectQuery or BroadcastQuery requests.
  142. # If empty, no program is invoked and "Willing to manage" is sent.
  143. # Default is ""
  144. Willing=/etc/kde4/kdm/Xwilling
  145.  
  146. [Shutdown]
  147. # The command (subject to word splitting) to run to halt the system.
  148. # Default is "/sbin/halt"
  149. #HaltCmd=
  150. # The command (subject to word splitting) to run to reboot the system.
  151. # Default is "/sbin/reboot"
  152. #RebootCmd=
  153. # Whether it is allowed to shut down the system via the global command socket.
  154. # Default is false
  155. #AllowFifo=true
  156. # Whether it is allowed to abort active sessions when shutting down the
  157. # system via the global command socket.
  158. # Default is true
  159. #AllowFifoNow=false
  160. # The boot manager KDM should use for offering boot options in the
  161. # shutdown dialog.
  162. # "None" - no boot manager
  163. # "Grub" - Grub boot manager
  164. # "Lilo" - Lilo boot manager (Linux on i386 & x86-64 only)
  165. # Default is None
  166. #BootManager=Grub
  167.  
  168. # Rough estimations about how many seconds KDM will spend at most on
  169. # - opening a connection to the X-server (OpenTime) if the attempt
  170. #   - times out: OpenTimeout
  171. #   - is refused: OpenRepeat * OpenDelay
  172. # - starting a local X-server (ServerTime):
  173. #   ServerAttempts * (ServerTimeout + OpenDelay)
  174. # - starting a display:
  175. #   - local display: ServerTime + OpenTime
  176. #   - foreign display: StartAttempts * OpenTime
  177. #   - XDMCP display: OpenTime (repeated indefinitely by client)
  178.  
  179. # Core config for all displays
  180. [X-*-Core]
  181. # How long to wait before retrying to connect a display.
  182. # Default is 15
  183. #OpenDelay=15
  184. # How long to wait before timing out a display connection attempt.
  185. # Default is 120
  186. #OpenTimeout=120
  187. # How many connection attempts to make during a start attempt. Note that
  188. # a timeout aborts the entire start attempt.
  189. # Default is 5
  190. #OpenRepeat=5
  191. # Try at most that many times to start a display. If this fails, the display
  192. # is disabled.
  193. # Default is 4
  194. #StartAttempts=4
  195. # Ping remote display every that many minutes.
  196. # Default is 5
  197. #PingInterval=5
  198. # Wait for a Pong that many minutes.
  199. # Default is 5
  200. #PingTimeout=5
  201. # The name of this X-server's Xauth file.
  202. # If empty, a random name in the AuthDir directory will be used.
  203. # Default is ""
  204. #AuthFile=
  205. # Specify a file with X-resources for the greeter, chooser and background.
  206. # The KDE frontend does not use this file, so you do not need it unless you
  207. # use another background generator than krootimage.
  208. # Default is ""
  209. #Resources=
  210. # The xrdb program to use to read the above specified recources.
  211. # Subject to word splitting.
  212. # Default is "/usr/bin/xrdb"
  213. #Xrdb=
  214. # A program to run before the greeter is shown. Can be used to start an
  215. # xconsole or an alternative background generator. Subject to word splitting.
  216. # Default is ""
  217. Setup=/etc/kde4/kdm/Xsetup
  218. # A program to run before a user session starts. Subject to word splitting.
  219. # Default is ""
  220. Startup=/etc/kde4/kdm/Xstartup
  221. # A program to run after a user session exits. Subject to word splitting.
  222. # Default is ""
  223. Reset=/etc/kde4/kdm/Xreset
  224. # The program which is run as the user which logs in. It is supposed to
  225. # interpret the session argument (see SessionsDirs) and start an appropriate
  226. # session according to it. Subject to word splitting.
  227. # Default is "/usr/bin/xterm -ls -T"
  228. Session=/etc/kde4/kdm/Xsession
  229. # The program to run if Session fails.
  230. # Default is "/usr/bin/xterm"
  231. #FailsafeClient=
  232. # The PATH for the Session program.
  233. # Default is "/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games"
  234. #UserPath=
  235. # The PATH for Setup, Startup and Reset, etc.
  236. # Default is "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11"
  237. #SystemPath=
  238. # The default system shell.
  239. # Default is "/bin/sh"
  240. #SystemShell=/bin/bash
  241. # Where to put the user's X-server authorization file if ~/.Xauthority
  242. # cannot be created.
  243. # Default is "/tmp"
  244. #UserAuthDir=
  245. # If true, UserAuthDir will be used unconditionally.
  246. # Default is false
  247. #ForceUserAuthDir=true
  248. # Whether to automatically restart sessions after X-server crashes.
  249. # Note that enabling this makes circumventing screen lockers other than
  250. # KDE's built-in one possible!
  251. # Default is false
  252. #AutoReLogin=true
  253. # Allow root logins?
  254. # Default is true
  255. AllowRootLogin=false
  256. # Allow to log in, when user has set an empty password?
  257. # Default is true
  258. AllowNullPasswd=false
  259. # Who is allowed to shut down the system. This applies both to the
  260. # greeter and to the command sockets.
  261. # "None" - no "Shutdown..." menu entry is shown at all
  262. # "Root" - the root password must be entered to shut down
  263. # "All" - everybody can shut down the machine
  264. # Default is All
  265. AllowShutdown=Root
  266. # Who is allowed to abort active sessions when shutting down.
  267. # "None" - no forced shutdown is allowed at all
  268. # "Root" - the root password must be entered to shut down forcibly
  269. # "All" - everybody can shut down the machine forcibly
  270. # Default is All
  271. #AllowSdForceNow=Root
  272. # The default choice for the shutdown condition/timing.
  273. # "Schedule" - shut down after all active sessions exit (possibly at once)
  274. # "TryNow" - shut down, if no active sessions are open; otherwise, do nothing
  275. # "ForceNow" - shut down unconditionally
  276. # Default is Schedule
  277. #DefaultSdMode=ForceNow
  278. # How to offer shutdown scheduling options:
  279. # "Never" - not at all
  280. # "Optional" - as a button in the simple shutdown dialogs
  281. # "Always" - instead of the simple shutdown dialogs
  282. # Default is Never
  283. #ScheduledSd=Optional
  284. # The directories containing session type definitions in .desktop format,
  285. # ordered by falling priority.
  286. # Default is "/usr/share/xsessions,/var/lib/menu-xdg/xsessions,/usr/share/apps/kdm/sessions"
  287. #SessionsDirs=/usr/share/xsessions,/var/lib/menu-xdg/xsessions,/usr/share/apps/kdm/sessions
  288. # The file (relative to $HOME) to redirect the session output to. The
  289. # following character pairs are replaced:
  290. # - %d -> current display
  291. # - %u -> current user
  292. # - %r -> empty at first. See below.
  293. # - %% -> a single %
  294. # When the constructed filename cannot be used safely and the specification
  295. # contains %<stuff>r, other names will be tried - this time expanding %<stuff>r
  296. # to <stuff> followed by a random number.
  297. # Default is ".xsession-errors"
  298. ClientLogFile=.xsession-errors-%d
  299. # Fallback when ClientLogFile cannot be used. The same expansions are
  300. # supported. DO NOT use relative paths here.
  301. # Default is "/tmp/xerr-%u-%d%-r"
  302. #ClientLogFallback=/var/log/xsession-errors/%u-%d%-r
  303. # Whether KDM's built-in utmp/wtmp/lastlog registration should be used.
  304. # Default is false
  305. #UseSessReg=true
  306.  
  307. # Greeter config for all displays
  308. [X-*-Greeter]
  309. # Specify the widget style for the greeter. Empty means to use the
  310. # built-in default which currently is "Oxygen".
  311. # Default is ""
  312. #GUIStyle=Plastique
  313. # Specify the widget color scheme for the greeter. Empty means to use the
  314. # built-in default which currently is "Oxygen".
  315. # Default is ""
  316. #ColorScheme=MidnightMeadow
  317. # What should be shown in the greeter's logo are:
  318. # "None" - nothing
  319. # "Logo" - the image specified by LogoPixmap
  320. # "Clock" - a neat analog clock
  321. # Default is Clock
  322. LogoArea=Logo
  323. # The image to show when LogoArea=Logo.
  324. # Default is ""
  325. LogoPixmap=/usr/share/kde4/apps/kdm/pics/kdelogo.png
  326. # The relative coordinates (X,Y in percent) of the center of the greeter.
  327. # Default is "50,50"
  328. #GreeterPos=30,40
  329. # The screen the greeter should be displayed on in multi-headed and Xinerama
  330. # setups. The numbering starts with 0. For Xinerama, it corresponds to the
  331. # listing order in the active ServerLayout section of XF86Config; -1 means
  332. # to use the upper-left screen, -2 means to use the upper-right screen.
  333. # Default is 0
  334. #GreeterScreen=-1
  335. # The headline in the greeter. The following character pairs are replaced:
  336. # - %d -> current display
  337. # - %h -> host name, possibly with domain name
  338. # - %n -> node name, most probably the host name without domain name
  339. # - %s -> the operating system
  340. # - %r -> the operating system's version
  341. # - %m -> the machine (hardware) type
  342. # - %% -> a single %
  343. # Default is "Welcome to Kubuntu at %n"
  344. #GreetString=Welcome to Kubuntu at %n
  345. # Whether the fonts used in the greeter should be antialiased.
  346. # Default is false
  347. #AntiAliasing=true
  348. # The font for the greeter headline.
  349. # Default is "Serif,20,bold"
  350. #GreetFont=Serif,20,5,0,50,0
  351. # The normal font used in the greeter.
  352. # Default is "Sans Serif,10"
  353. #StdFont=Sans Serif,10,5,0,50,0
  354. # The font used for the "Login Failed" message.
  355. # Default is "Sans Serif,10,bold"
  356. #FailFont=Sans Serif,10,5,0,75,0
  357. # What to do with the Num Lock modifier for the time the greeter is running:
  358. # "Off" - turn off
  359. # "On" - turn on
  360. # "Keep" - do not change the state
  361. # Default is Keep
  362. #NumLock=Off
  363. # Language and locale to use in the greeter, encoded like $LANGUAGE.
  364. # If empty, the settings from the environment are used.
  365. # Default is ""
  366. #Language=de_DE
  367. # Enable autocompletion in the username line edit.
  368. # Default is false
  369. #UserCompletion=true
  370. # Enable user list (names along with images) in the greeter.
  371. # Default is true
  372. #UserList=false
  373. # User selection for UserCompletion and UserList:
  374. # "NotHidden" - all users except those listed in HiddenUsers
  375. # "Selected" - only the users listed in SelectedUsers
  376. # Default is NotHidden
  377. #ShowUsers=Selected
  378. # For ShowUsers=Selected. @<group> means all users in that group.
  379. # Default is ""
  380. #SelectedUsers=root,johndoe
  381. # For ShowUsers=NotHidden. @<group> means all users in that group.
  382. # Default is ""
  383. #HiddenUsers=root
  384. # Special case of HiddenUsers: users with a non-zero UID less than this number
  385. # will not be shown as well.
  386. # Default is 0
  387. MinShowUID=1000
  388. # Complement to MinShowUID: users with a UID greater than this number will
  389. # not be shown as well.
  390. # Default is 65535
  391. MaxShowUID=29999
  392. # If false, the users are listed in the order they appear in /etc/passwd.
  393. # If true, they are sorted alphabetically.
  394. # Default is true
  395. #SortUsers=false
  396. # Specify, where the users' pictures should be taken from.
  397. # "AdminOnly" - from <FaceDir>/$USER.face[.icon]
  398. # "PreferAdmin" - prefer <FaceDir>, fallback on $HOME
  399. # "PreferUser" - ... and the other way round
  400. # "UserOnly" - from the user's $HOME/.face[.icon]
  401. # Default is PreferUser
  402. #FaceSource=PreferUser
  403. # The directory containing the user images if FaceSource is not UserOnly.
  404. # Default is "/usr/share/kde4/apps/kdm/faces"
  405. #FaceDir=/usr/share/faces
  406. # Specify, if/which user should be preselected for log in.
  407. # "None" - do not preselect any user
  408. # "Previous" - the user which successfully logged in last time
  409. # "Default" - the user specified in the DefaultUser option
  410. # Default is None
  411. #PreselectUser=Previous
  412. # If this is true, the password input line is focused automatically if
  413. # a user is preselected.
  414. # Default is false
  415. #FocusPasswd=true
  416. # If this is true, the entered password is echoed as bullets. Otherwise,
  417. # no feedback is given at all.
  418. # Default is true
  419. #EchoPasswd=false
  420. # If true, krootimage will be automatically started by KDM; otherwise, the
  421. # Setup script should be used to setup the background.
  422. # Default is true
  423. #UseBackground=false
  424. # The configuration file to be used by krootimage.
  425. # Default is "/etc/kde4/kdm/backgroundrc"
  426. #BackgroundCfg=
  427. # Hold the X-server grabbed the whole time the greeter is visible. This
  428. # may be more secure, but it will disable any background and other
  429. # X-clients started from the Setup script.
  430. # Default is false
  431. #GrabServer=true
  432. # How many seconds to wait for grab to succeed.
  433. # Default is 3
  434. #GrabTimeout=3
  435. # Warn, if display has no X-authorization (local auth cannot be created,
  436. # XDMCP display wants no auth, or display is foreign from StaticServers).
  437. # Default is true
  438. #AuthComplain=false
  439. # Random seed for forging saved session types, etc. of unknown users.
  440. # This value should be random but constant across the login domain.
  441. # Default is 0
  442. #ForgingSeed=0
  443. # Specify conversation plugins for the login dialog. Each plugin can be
  444. # specified as a base name (which expands to $kde_modulesdir/kgreet_$base)
  445. # or as a full pathname.
  446. # Default is "classic"
  447. #PluginsLogin=sign
  448. # Same as PluginsLogin, but for the shutdown dialog.
  449. # Default is "classic"
  450. #PluginsShutdown=modern
  451. # A list of options of the form Key=Value. The conversation plugins can query
  452. # these settings; it is up to them what possible keys are.
  453. # Default is ""
  454. #PluginOptions=SomeKey=randomvalue,Foo=bar
  455. # Show the "Console Login" action in the greeter (if ServerTTY/ConsoleTTYs
  456. # is configured).
  457. # Default is true
  458. #AllowConsole=false
  459. # A program to run while the greeter is visible. It is supposed to preload
  460. # as much as possible of the session that is going to be started (most
  461. # probably).
  462. # Default is ""
  463. Preloader=/usr/bin/preloadkde
  464. # Whether the greeter should be themed.
  465. # Default is false
  466. UseTheme=true
  467. # The theme to use for the greeter. Can point to either a directory or an XML
  468. # file.
  469. # Default is ""
  470. Theme=/usr/share/kde4/apps/kdm/themes/oxygen
  471.  
  472. # Core config for local displays
  473. [X-:*-Core]
  474. # How often to try to run the X-server. Running includes executing it and
  475. # waiting for it to come up.
  476. # Default is 1
  477. #ServerAttempts=1
  478. # How long to wait for a local X-server to come up.
  479. # Default is 15
  480. #ServerTimeout=15
  481. # The command line to start the X-server, without display number and VT spec.
  482. # This string is subject to word splitting.
  483. # Default is "/usr/bin/X"
  484. ServerCmd=/usr/bin/X
  485. # Additional arguments for the X-servers for local sessions.
  486. # This string is subject to word splitting.
  487. # Default is ""
  488. ServerArgsLocal=-br -nolisten tcp
  489. # Additional arguments for the X-servers for remote sessions.
  490. # This string is subject to word splitting.
  491. # Default is ""
  492. #ServerArgsRemote=
  493. # Restart instead of resetting the local X-server after session exit.
  494. # Use it if the server leaks memory etc.
  495. # Default is false
  496. #TerminateServer=true
  497. # The signal needed to reset the local X-server.
  498. # Default is 1 (SIGHUP)
  499. #ResetSignal=1
  500. # The signal needed to terminate the local X-server.
  501. # Default is 15 (SIGTERM)
  502. #TermSignal=15
  503. # Create X-authorizations for local displays.
  504. # Default is true
  505. #Authorize=false
  506. # Which X-authorization mechanisms should be used.
  507. # Default is "MIT-MAGIC-COOKIE-1"
  508. #AuthNames=
  509. # Need to reset the X-server to make it read initial Xauth file.
  510. # Default is false
  511. #ResetForAuth=true
  512. # See above
  513. AllowNullPasswd=true
  514. # See above
  515. AllowShutdown=All
  516. # Enable password-less logins on this display. USE WITH EXTREME CARE!
  517. # Default is false
  518. #NoPassEnable=true
  519. # The users that do not need to provide a password to log in. NEVER list root!
  520. # "*" means all non-root users. @<group> means all users in that group.
  521. # Default is ""
  522. #NoPassUsers=fred,ethel
  523.  
  524. # Greeter config for local displays
  525. [X-:*-Greeter]
  526. # See above
  527. PreselectUser=Previous
  528. # See above
  529. FocusPasswd=true
  530. # Specify whether the greeter of local displays should start up in host chooser
  531. # (remote) or login (local) mode and whether it is allowed to switch to the
  532. # other mode.
  533. # "LocalOnly" - only local login possible
  534. # "DefaultLocal" - start up in local mode, but allow switching to remote mode
  535. # "DefaultRemote" - ... and the other way round
  536. # "RemoteOnly" - only choice of remote host possible
  537. # Default is LocalOnly
  538. LoginMode=DefaultLocal
  539. # A list of hosts to be automatically added to the remote login menu. The
  540. # special name "*" means broadcast.
  541. # Default is "*"
  542. #ChooserHosts=*,ugly,sky,dino,kiste.local,login.crap.com
  543. # Show the "Restart X Server"/"Close Connection" action in the greeter.
  544. # Default is true
  545. AllowClose=true
  546.  
  547. # Core config for 1st local display
  548. [X-:0-Core]
  549. # The VT the X-server should run on; auto-assign if zero, don't assign if -1.
  550. # Better leave it zero and use ServerVTs.
  551. # Default is 0
  552. #ServerVT=7
  553. # Enable automatic login. USE WITH EXTREME CARE!
  554. # Default is false
  555. #AutoLoginEnable=true
  556. # If true, auto-login after logout. If false, auto-login is performed only
  557. # when a display session starts up.
  558. # Default is false
  559. #AutoLoginAgain=true
  560. # The delay in seconds before automatic login kicks in.
  561. # Default is 0
  562. #AutoLoginDelay=10
  563. # The user to log in automatically. NEVER specify root!
  564. # Default is ""
  565. #AutoLoginUser=fred
  566. # The password for the user to log in automatically. This is NOT required
  567. # unless the user is logged into a NIS or Kerberos domain. If you use this
  568. # option, you should "chmod 600 kdmrc" for obvious reasons.
  569. # Default is ""
  570. #AutoLoginPass=secret!
  571. # Immediately lock the automatically started session. This works only with
  572. # KDE sessions.
  573. # Default is false
  574. #AutoLoginLocked=true
  575. # See above
  576. ClientLogFile=.xsession-errors
  577.  
  578. # Greeter config for 1st local display
  579. [X-:0-Greeter]
  580. # See above
  581. #PreselectUser=Default
  582. # The user to preselect if PreselectUser=Default.
  583. # Default is ""
  584. #DefaultUser=johndoe
  585.